home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / touch_the_bubbles.swf / scripts / DefineSprite_57 / frame_2 / DoAction.as
Text File  |  2008-03-12  |  491b  |  20 lines

  1. if(_root.pss != 1 and _root.gameover != 1)
  2. {
  3.    lvl._xscale += 0.05 + _root.level / 100;
  4.    if(lvl._xscale > 100)
  5.    {
  6.       _root.attachMovie("levelup","levelup",1);
  7.       if(_root.sfx == 1)
  8.       {
  9.          _root.snd.gotoAndPlay(54);
  10.       }
  11.       _root.levelup._x = 261;
  12.       _root.levelup._y = 260;
  13.       _root.level = _root.level + 1;
  14.       _root.ckope += 20;
  15.       _root.menustats.gotoAndPlay(1);
  16.       _root.menustats2.gotoAndPlay(1);
  17.       gotoAndPlay(1);
  18.    }
  19. }
  20.